home *** CD-ROM | disk | FTP | other *** search
/ The Datafile PD-CD 1 Issue 2 / PDCD-1 - Issue 02.iso / _utilities / utilities / 001 / fue / div_c next >
Text File  |  1991-04-21  |  97b  |  11 lines

  1. #include <stdio.h>
  2.  
  3. int main()
  4. {  int i;
  5.    for (i=0; i<10; ++i)
  6.    {  int j;
  7.       j=i;
  8.    }
  9. }
  10.  
  11.